Comparison operators
You can use comparison operators in the where clause to filter the data
SELECT 1 = 1;
SELECT 1 < 1;
SELECT 1 > 2;
SELECT 1 <= 2;
SELECT 1 >= 2;
SELECT 1 <> 2; /* this is not equal */
SELECT 'hello' <> 'Hello';
You can use comparison operators in the where clause to filter the data
SELECT 1 = 1;
SELECT 1 < 1;
SELECT 1 > 2;
SELECT 1 <= 2;
SELECT 1 >= 2;
SELECT 1 <> 2; /* this is not equal */
SELECT 'hello' <> 'Hello';